home *** CD-ROM | disk | FTP | other *** search
/ Collection of Internet / Collection of Internet.iso / infosrvr / dev / www_talk.930 / 000508_timbl@www3.cern.ch _Wed Jan 6 17:38:48 1993.msg < prev    next >
Internet Message Format  |  1994-01-24  |  2KB

  1. Return-Path: <timbl@www3.cern.ch>
  2. Received: from dxmint.cern.ch by  nxoc01.cern.ch  (NeXT-1.0 (From Sendmail 5.52)/NeXT-2.0)
  3.     id AA13642; Wed, 6 Jan 93 17:38:48 MET
  4. Received: by dxmint.cern.ch (5.65/DEC-Ultrix/4.3)
  5.     id AA20147; Wed, 6 Jan 1993 17:53:43 +0100
  6. Received: by www3.cern.ch (NX5.67c/NX3.0S)
  7.     id AA01883; Wed, 6 Jan 93 17:53:41 +0100
  8. Date: Wed, 6 Jan 93 17:53:41 +0100
  9. From: Tim Berners-Lee <timbl@www3.cern.ch>
  10. Message-Id: <9301061653.AA01883@www3.cern.ch>
  11. Received: by NeXT.Mailer (1.87.1)
  12. Received: by NeXT Mailer (1.87.1)
  13. To: Denis DeLaRoca (310) 825-4580 <CSP1DWD@mvs.oac.ucla.edu>
  14. Subject: Bug fix for WWWLibrary -- crashed with TechInfo gateway.
  15. Cc: www-talk@nxoc01.cern.ch, www-bug@nxoc01.cern.ch
  16. Reply-To: timbl@nxoc01.cern.ch
  17.  
  18. Happy New year everyone...
  19.  
  20. Ooops!
  21.  
  22. The problem is in HTML.c, there should be an UPDATE_STYLE in as first line of  
  23. list_element -- if not, a pargraph mark is written to a nonexistent text  
  24. object. Happens when the very first printable thing is a list element.
  25. Fixed routine is:
  26.  
  27. PRIVATE void list_element  ARGS3(void *, this, HTTag *,t, HTElement *,e)
  28. {
  29.     UPDATE_STYLE;
  30.     if (e->tag != &tags[DIR_TAG])
  31.     HText_appendParagraph(THIS->text);
  32.     else
  33.         HText_appendCharacter(THIS->text, '\t');    /* Tab @@ nl for UL? */
  34.     THIS->in_word = NO;
  35. }
  36.  
  37.  
  38. It'll be fixed in the next release. 1.1a of the library, I suggest you fix this  
  39. in your code now for speed.
  40.  
  41.     Tim
  42.  
  43. Begin original message:
  44.  
  45. Date:    Wed, 06 Jan 93 08:25 PST
  46. From: Denis DeLaRoca (310) 825-4580        <CSP1DWD@mvs.oac.ucla.edu>
  47.  
  48. Happy new year!
  49.  
  50. I just tried this TechInfo gateway... after selecting MIT from the
  51. opening menu my WWW client crashes badly (my MVS port), so does the
  52. sun3 version (fat core dump). Could you look into this?
  53.  
  54. -- Denis
  55.  
  56.